home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 750 / splitq / amigacompq.h next >
C/C++ Source or Header  |  1995-03-18  |  1KB  |  28 lines

  1. /*****************************************************************************\
  2.  * amigacompq.h                                 DICE/LATTICE C/SAS C/AZTEC C *
  3.  *                 _                                                         *
  4.  *            _   // (c)1992 by "Quarky" Dieter Temme                        *
  5.  *            \\ // Version 1.0 of 24.8.92                                   *
  6.  *             \X/ --- Freeware --- ONLY AMIGA MAKES IT POSSIBLE             *
  7.  *                                                                           *
  8.  * this header file define a few constants for easier feature detection in   *
  9.  * C programs for the Amiga                                                  *
  10. \*****************************************************************************/
  11.  
  12. #ifdef LATTICE
  13.  #define PRAGMAS_
  14.  #define GETA4TYPE_
  15.  #define GETA4FUNC_ geta4()
  16. #endif
  17.  
  18. #ifdef _DCC
  19.  #define GETA4TYPE_ __geta4
  20.  #define GETA4FUNC_
  21. #endif
  22.  
  23. #ifdef AZTEC_C
  24.  #define PRAGMAS_
  25.  #define GETA4TYPE_
  26.  #define GETA4FUNC_ geta4()
  27. #endif
  28.